1. /* snmstblk.cpp by K.Tsuru */
  2. // function ID = 108 DRADIX, BRADIX
  3. /**************************************
  4. SNumber class
  5. It sets a value by FigBlock and sign.
  6. It does not call Normalize().
  7. ***************************************/
  8. #ifndef SN_H
  9. #include "sn.h"
  10. #endif
  11. void SNumber::SetFigBlock(const FigBlock& a, int sgn){
  12. figure = a; sign = Sgn(sgn);
  13. if(figure.size() < minArraySize) figure.size(minArraySize, 1);
  14. CheckArray(108);
  15. }

snmstblk.cpp : last modifiled at 2015/11/27 16:05:31(453 bytes)
created at 2016/04/11 11:36:47
The creation time of this html file is 2017/10/27 10:59:17 (Fri Oct 27 10:59:17 2017).